home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Meeting.dxr / 00003_Navigation handlers.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  852 b   |  41 lines

  1. global gMasterData, gSection
  2.  
  3. on goIntro
  4.   go(label("intro"))
  5.   set gSection to #clicks
  6.   goNarrator(gMasterData, "79")
  7. end
  8.  
  9. on goNext
  10.   go(#next)
  11.   set gSection to #clicks
  12. end
  13.  
  14. on goPrev
  15.   go(#previous)
  16. end
  17.  
  18. on clickAgenda
  19.   if the frame > 145 then
  20.     set the memberNum of sprite 24 to the number of member "agenda 2"
  21.   else
  22.     set the memberNum of sprite 24 to the number of member "agenda"
  23.   end if
  24.   set the loc of sprite 24 to point(320, 240)
  25. end
  26.  
  27. on clickTeam
  28.   set the memberNum of sprite 24 to the number of member "guidelines"
  29.   set the loc of sprite 24 to point(320, 240)
  30. end
  31.  
  32. on clickRoles
  33.   set the memberNum of sprite 24 to the number of member "roles"
  34.   set the loc of sprite 24 to point(320, 240)
  35. end
  36.  
  37. on clickMission
  38.   set the memberNum of sprite 24 to the number of member "mission"
  39.   set the loc of sprite 24 to point(320, 240)
  40. end
  41.